decreased required automake version to 1.7.9.
authorØyvind Kolås <ok@src.gnome.org>
Tue, 12 Sep 2006 21:14:00 +0000 (21:14 +0000)
committerØyvind Kolås <ok@src.gnome.org>
Tue, 12 Sep 2006 21:14:00 +0000 (21:14 +0000)
* autogen.sh: decreased required automake version to 1.7.9.

ChangeLog
autogen.sh

index 6036667591b76525da0ef9fb7d1d6fb020025b88..a4ec272a3132b3ef40d2f96d4e4f364f3d2a7e58 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-09-12  Øyvind Kolås  <pippin@gimp.org>
+
+       * autogen.sh: decreased required automake version to 1.7.9. (It
+       could probably be decreased even further, but this is at least
+       known to work.)
+
 2006-09-12  Michael Schumacher  <schumaml@cvs.gnome.org>
 
        * autogen.sh: use the autogen.sh of GIMP as a base for babl's
index c69cfd714f8be9c1cc3c333a7a7dcd3114c3bf71..0ce5cc9e63878252eee6eb2a2c0d04567a40634c 100755 (executable)
@@ -16,7 +16,7 @@ AUTOMAKE=${AUTOMAKE-automake-1.9}
 LIBTOOLIZE=${LIBTOOLIZE-libtoolize}
 
 AUTOCONF_REQUIRED_VERSION=2.54
-AUTOMAKE_REQUIRED_VERSION=1.8.3
+AUTOMAKE_REQUIRED_VERSION=1.7.9
 LIBTOOL_REQUIRED_VERSION=1.4
 LIBTOOL_WIN32=1.5
 
@@ -135,6 +135,9 @@ elif (automake-1.9 --version) < /dev/null > /dev/null 2>&1; then
 elif (automake-1.8 --version) < /dev/null > /dev/null 2>&1; then
    AUTOMAKE=automake-1.8
    ACLOCAL=aclocal-1.8
+elif (automake-1.7 --version) < /dev/null > /dev/null 2>&1; then
+   AUTOMAKE=automake-1.7
+   ACLOCAL=aclocal-1.7
 else
     echo
     echo "  You must have automake $AUTOMAKE_REQUIRED_VERSION or newer installed to compile $PROJECT."